home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / pgp20src.zip / ZGLOBALS.C < prev    next >
C/C++ Source or Header  |  1992-07-16  |  709b  |  22 lines

  1. /*
  2.  
  3.  Copyright (C) 1990,1991 Mark Adler, Richard B. Wales, and Jean-loup Gailly.
  4.  Permission is granted to any individual or institution to use, copy, or
  5.  redistribute this software so long as all of the original files are included
  6.  unmodified, that it is not sold for profit, and that this copyright notice
  7.  is retained.
  8.  
  9. */
  10.  
  11. /*
  12.  *  globals.c by Mark Adler.
  13.  */
  14.  
  15. #define GLOBALS         /* include definition of errors[] in zip.h */
  16. #include "zip.h"
  17.  
  18. /* Argument processing globals */
  19. int method = BEST;      /* one of BEST, DEFLATE (only), or STORE (only) */
  20. int level = 5;          /* 0=fastest compression, 9=best compression */
  21. char *special = NULL;   /* List of special suffixes */
  22.